home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------------*/
- /* */
- /* TEXTMAIN.CPP */
- /* */
- /* Main entry point for the TEXTWIN application. */
- /* */
- /*------------------------------------------------------------------------*/
-
- #include "textwin.h"
-
- extern "C" int PASCAL WinMain( HINSTANCE inst, HINSTANCE, LPSTR, int show )
- {
- TextWindow window;
- window.Create( inst, show );
-
- MSG msg;
- while( GetMessage( &msg, 0, 0, 0 ) )
- {
- TranslateMessage( &msg );
- DispatchMessage( &msg );
- }
- return msg.wParam;
- }
-
-
-